home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 023 / ver30 / sys / cpm86 / spawn.c < prev    next >
C/C++ Source or Header  |  1995-03-17  |  466b  |  23 lines

  1. /*
  2.  * Name:    MicroEMACS
  3.  *        CP/M-86 spawn a sub-CLI (ha-ha).
  4.  * Version:    29
  5.  * Last edit:    05-Feb-86
  6.  * By:        rex::conroy
  7.  *        decvax!decwrl!dec-rhea!dec-rex!conroy
  8.  */
  9. #include    "def.h"
  10.  
  11. /*
  12.  * Create a subjob with a copy
  13.  * of the command intrepreter in it. When the
  14.  * command interpreter exits, mark the screen as
  15.  * garbage so that you do a full repaint. Bound
  16.  * to "C-C" and called from "C-Z".
  17.  */
  18. spawncli(f, n, k)
  19. {
  20.     eprintf("Not in CP/M-86");
  21.     return (FALSE);
  22. }
  23.